home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_FineLeather_Small_Cra < prev    next >
Encoding:
Text File  |  2003-04-22  |  532 b   |  25 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_FineLeather():
  13.     return {
  14.         'Angle': 239, 
  15.         'Blur': 10, 
  16.         'Color': (0,0,0), 
  17.         'FurrowCount': 139, 
  18.         'FurrowLength': 6, 
  19.         'Transparency': 250
  20.         }
  21.  
  22. def Do(Environment):
  23.     App.Do( Environment, 'FineLeather',         Preset_FineLeather())
  24.  
  25.